-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix install destinations #209
base: master
Are you sure you want to change the base?
Conversation
`.` will by default install to `/usr/local/./armips` (similar for the Readme) which is undesirable. armips should install to a bin directory, Readme should install to a doc directory for the executable.
Hm, I'm not sure if these would be ideal for Windows packages. What do you think of using GNUInstallDirs and overriding the variables with suitable paths when on Windows? That'd give maximum flexibility too. |
I can certainly look into it, though I'm not familiar with when you'd ever use |
How are these even used on Windows considering Windows has neither |
Use default UNIX values on non-Windows systems, use the prefix directory itself on Windows.
Windows is untested, but should work the same as it did previously. |
Previous commit feels over-engineered.
Can this PR be merged? I feel confusing too when the bin is installed in /usr/local, which is not in the PATH. |
+1 To this, please :) |
.
will by default install to/usr/local/./armips
(similar for the Readme) which is undesirable. armips should install to a bin directory, Readme should install to a doc directory for the executable.